home *** CD-ROM | disk | FTP | other *** search
/ Freelog 15 / FREELOG 15.ISO / WebMaster / Perl / PERL5106.ZIP / perl5 / INSTALL.TXT < prev    next >
Encoding:
Text File  |  1996-01-31  |  2.6 KB  |  71 lines

  1.  
  2. You are reading: INSTALL.TXT
  3. ----------------------------
  4.  
  5. ** For detailed information on what is included in this release, please      **
  6. ** refer to the file 'RELEASE.TXT'.                                          **
  7.  
  8. Installing the binary-only release of Perl for Win32
  9. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  10.  
  11. To install the binary version of Perl for Win32, do the following:
  12.  
  13. (1) Run 'install' from the command line 
  14.     (this is located in \Perl which must be the current directory)
  15.  
  16.     This script will do the following:
  17.  
  18.         - Add Perl related entries to the Registry.
  19.  
  20.         - Create the directory \Perl\bin.
  21.         
  22.           If this directory already exists, then it will look
  23.           in there for the file 'perl.exe'.  If the file
  24.                   exists, it will be run to determine its version
  25.                   number and then renamed to 'perl.{version #}.exe'.
  26.  
  27.         - If it's not already there, it will add '\Perl\bin'
  28.                   to your path. 
  29.  
  30.     A log of the installation session will be created in the file 
  31.     '\Perl\install.log'.
  32.  
  33. (2) Copy any of your own scripts or library files into the '\Perl\bin' 
  34.     directory.  
  35.  
  36.     In the previous step, this directory was added to your path.
  37.         By copying your own scripts into this directory, you should be
  38.         able to run them from any other directory.
  39.  
  40.  
  41. Building Perl for Win32 from a source release
  42. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  43.  
  44. Perl for Win32 has been developed using Microsoft Visual C.
  45. A makefile has been provided to build Perl for Win32 using the SDK as well.
  46. To build Perl for Win32 do the following:
  47.  
  48. (1) Build executables
  49.     Using Visual C++    
  50.         Start Microsoft Visual C and load 'Perl\exe-src\perl.mak'
  51.         Build both PerlGlob and Perl using the targets predefined for
  52.             your platform
  53.         load Perl\dll-src\perl100.mak and build perl100.dll
  54.  
  55.     Using SDK
  56.         Run 'nmake /f perl.mak "Perl Intel Release" "PerlGlob Intel Release"'
  57.         from the 'Perl\exe-src' directory.
  58.         This will build Perl.exe and PerlGlob.exe
  59.  
  60. (2) After the build, you should test the Perl binary by running a series of test 
  61.     scripts. This is done by running 'test' in the directory 
  62.     'Perl\ntt'.  It will report upon all functions tested, and 
  63.     any not currently implemented.
  64.  
  65. (3) Run 'install', located in Perl\ 
  66.     This will copy perl.exe,perlglob.exe and perl100.dll to the Perl\bin directory and 
  67.     perform the rest of the installation process. (see above for more details)
  68.  
  69. ** For detailed information on what is included in this release, please      **
  70. ** refer to the file 'RELEASE.TXT'.                                          **
  71.